4,775 Royalty-Free Audio Tracks for "In C"

00:00
03:40
A few minutes of relative nighttime silence in my neighborhood. Distant police and/or fire sirens towards the end. Recorded with: sanken cs-1e, fostex fr2le.
Author: Conleec
00:00
00:29
A man breathing while in deep sleep. Recording made for play. Hardware: behringer b-1, m-audio fasttrack ultra, macbook prosoftware: adobe audition cs 6no post processing.
Author: Harleto
00:00
00:39
Single thunder crack, fairly close, electrical clicks captured when lightning struck, toronto. Roof mounted cs-10em mics.
Author: Trp
00:00
02:03
This is the sound of rain hitting the top of my chevy malibu. It's recorded from an interior perspective. Recorded with: sanken cs-1e, fostex fr2le.
Author: Conleec
00:00
02:07
This is a recording in a run-down old barn during a heavy windstorm. Lots of rattling shingles, doors, etc. Recorded with: sound devices 702t, sanken cs-1e.
Author: Conleec
00:00
02:13
This is a recording in a run-down old barn during a heavy windstorm. Lots of rattling shingles, doors, etc. Recorded with: sound devices 702t, sanken cs-1e.
Author: Conleec
00:00
02:15
This recording was made in a small-town bar and grill. Quite active and boisterous. Many people chatting, etc. Recorded with: sound devices 702t, sanken cs-1e.
Author: Conleec
00:00
01:22
This recording was made in a small-town bar and grill. Quite active and boisterous. Many people chatting, etc. Recorded with: sound devices 702t, sanken cs-1e.
Author: Conleec
00:00
03:08
This recording was made at the lean-to, a small-town bar and grill in wasco, oregon. Several people chatter and talk. Recorded with: sound devices 702t, sanken cs-1e.
Author: Conleec
00:00
00:02
Recording of a person throwing a glass in the trash in the pompeu fabra university (poblenou campus). It was recorded by a zoom h4 and is an unpleasant sound.
Author: Marcolo
00:00
00:37
Sound of a handrail being tapped and wiped in a corridor at upf communication campus in barcelona. Recorded with a zoom h4n using the internal microphones.
Author: Ottomaani
00:00
00:23
Sound of french fries frying at the kitchen of upf communication campus in barcelona. Recorded with a zoom h4n using the internal microphones.
Author: Ottomaani
00:00
00:12
Sound of air conditioningin a room from the moment it is turn on until it is shutdown. Recorded with a tape recorder in a room of the library / crai pompeu fabra university.
Author: Mariiao
00:00
00:02
Sound of an orange juice brick being finished. Taken with a zoom h recorder, near the brick. Taken in the upf computer rooms building.
Author: Musicboy
00:00
01:21
Basketball bouncing, hockey stick shooting, radio, voices, bit distant, downtown toronto (2012). Sony m10 binaural with cs-10em.
Author: Trp
00:00
04:27
Thunder distant rolling, light rain, distant screaming, toronto. Roof mounted cs-10em mics.
Author: Trp
00:00
00:04
Recording of a plastic glass moved by the wind in the pompeu fabra university (poblenou campus). It was recorded with a zoom h4 and it is a soft sound.
Author: Marcolo
00:00
24:37
Thunderstorm, extended, rolling thunders get closer, rain, toronto. Roof mounted cs-10em mics.
Author: Trp
00:00
00:01
Perception of the sound of the water falling from the tap from the bathroom. This sound has been recorded using the zoom h2 handy recorder at the bathroom of tanger building.
Author: Arnydnd
00:00
00:05
Sound of a person flipping through pages from a newspaper. This sound has been recorded using a zoom h2 handy recorder at tallers' buildin at campus poblenou from upf.
Author: Arnydnd
00:00
00:28
This is my chevy malibu starting, the engine reving a couple times, then getting turned off. Recorded with: sanken cs-1e, fostex fr2le.
Author: Conleec
00:00
00:03
The sound that we hear it is produced by a printer during and after the print, when you wait and take off the papers. It is a repetitive sound but the last one have a different pitch more higher.
Author: Victoriarey
00:00
03:33
Quiet shopping centre in the uk. Zoom h1 and roland cs-10em microphones.
Author: Richwise
00:00
00:01
Sound of a plastic chair dragged across the floor. This sound has been recorded using a zoom h2 handy recorder at gutenberg's square at campus poblenou from upf.
Author: Arnydnd
00:00
04:29
I don't know what was getting these crows worked up, but i just had to record them. Recorded with: sanken cs-1e, sound devices 702t.
Author: Conleec
00:00
02:34
Binaural recording of various typing sounds on a keyboard. Binaural sounds are best heard using earphones. Recorded using a roland cs-10em with a sony icd-px470. Feel free to let me know what you used the sound for. :).
Author: The Underdog
00:00
00:46
This is my cat, trying to get my attention. Eventually, he lost interest and started to scratch his scratching post. Recorded with: sanken cs-1e, fostex fr2le.
Author: Conleec
00:00
07:45
Light rain becomes heavier, some rolling thunder, spring shower, urban rumble. Roof mounted cs-10em mics.
Author: Trp
00:00
00:01
Start sound of mac ii iix iicx iici se/30. Create by dissessemble rom code and use wave table algorithm write c program write wav file. C program below:. /* mac_ii. C *//* boot beep mac ii *//* 2558/09/06 */. #include. #define knumber_samples 30000#define kdelay_note 300#define kwave_table_value 0x30013f10#define ksample_rate 22257 // hz. Void preparewavetable( unsigned short *wavetable, unsigned int value );void updatewavetable( unsigned short *wavetable, unsigned short chiso );void savesound( char *filename, short *sounddata, unsigned int numberframes, unsigned int samplerate );. Int main () {. // ---- wave tableunsigned short wavetable[256];// ---- sound data, stereoshort sounddata[knumber_samples << 1];// ---- increment array (16/16 bit fix point integer)int arrayincrement[] = {3 << 16, 4 << 16, (3 << 16) + 0x2f2, 6 << 16};// ---- prepare wave tablepreparewavetable( wavetable, kwave_table_value );. // ---- array phase (16/16 bit fix point integer)unsigned int arrayphase[] = {0, 0, 0, 0}; // set all = 0. Unsigned int samplenumber = 0;while( samplenumber < knumber_samples ) {. // ---- calculate sampleunsigned int channelleft = 0;unsigned int channelright = 0;unsigned char notenumber = 0;while ( notenumber < 4 ) {// ---- see if should update phase for note, only do if play noteif( samplenumber >= notenumber*kdelay_note ) {// ---- up date phase beforearrayphase[notenumber] += arrayincrement[notenumber];// ---- not let out of range [0; 255]if( arrayphase[notenumber] > 0xff0000 ) // 0xff0000 == 255 << 16arrayphase[notenumber] -= 0xff0000; // return to begin of wave table}unsigned short mauvat = wavetable[arrayphase[notenumber] >> 16];. // ---- add sound componentsif( notenumber < 2 ) // ---- first 2 notes left channelchannelleft += mauvat;else // ---- last 2 notes right channelchannelright += mauvat;// ---- next notenotenumber++;}// ---- save left and right samplessounddata[samplenumber << 1] = (channelleft << 9) - 0x8000; // use << 1 for 16 bitsounddata[(samplenumber << 1) + 1] = (channelright << 9) - 0x8000; // use << 1 for 16 bitupdatewavetable( wavetable, samplenumber & 0xff );samplenumber++;}// ---- save wav filesavesound( "mac ii. Wav", sounddata, samplenumber << 1, ksample_rate ); // multiply 2 because stereo. Return 1;}. Void preparewavetable( unsigned short *wavetable, unsigned int value ) {. // ---- prepare wave tableunsigned short index = 0;unsigned short wavetablevalue = value & 0xff;while( index < 64 ) {wavetable[index] = wavetablevalue; // << 8; // for 16 bitindex++;}. Wavetablevalue = (value >> 8) & 0xff;while( index < 128 ) {wavetable[index] = wavetablevalue; // << 8; // for 16 bitindex++;}. Wavetablevalue = (value >> 16) & 0xff;while( index < 192 ) {wavetable[index] = wavetablevalue; // << 8; // for 16 bitindex++;}wavetablevalue = (value >> 24) & 0xff;while( index < 256 ) {wavetable[index] = wavetablevalue; // << 8; // for 16 bitindex++;}}. Void updatewavetable( unsigned short *wavetable, unsigned short index ) {// ---- get value from wave tableunsigned short value = wavetable[index];// ---- calculate new value for wave tableif( index == 255 ) { // careful at last element of wave tablevalue += wavetable[0];value = (value >> 1);wavetable[0] = value;}else {value += wavetable[index+1];value = (value >> 1);wavetable[index+1] = value;}. }. #pragma mark ---- save wavvoid saveheader( file *filename, unsigned int samplerate );void savesounddatainteger16bit( file *filename, short *sounddata, unsigned int numbersamples );. Void savesound( char *filename, short *sounddata, unsigned int numberframes, unsigned int samplerate ) {// ---- open filefile *file = fopen( filename, "wb" );if( file ) {// ---- "riff"fprintf( file, "riff" );// ---- length sound file - 8unsigned int lengthsoundfile = 32;lengthsoundfile += numberframes << 1; // một không có một mẫu vạt cho kênh trái và phải// ---- save file lengthfputc( (lengthsoundfile) & 0xff, file );fputc( (lengthsoundfile >> 8) & 0xff, file );fputc( (lengthsoundfile >> 16) & 0xff, file );fputc( (lengthsoundfile >> 24) & 0xff, file );// ---- "wave"fprintf( file, "wave" );// ---- save headersaveheader( file, samplerate );// ---- save sound datasavesounddatainteger16bit( file, sounddata, numberframes );// ---- close filefclose( file );}else {printf( "problem save file %s\n", filename );}}. Void saveheader( file *file, unsigned int samplerate ) {// ---- name for header "fmt "fprintf( file, "fmt " );// ---- header lengthfputc( 0x10, file ); // length 16 bytefputc( 0x00, file );fputc( 0x00, file );fputc( 0x00, file );// ---- method for encode, 16 bit pcmfputc( 0x01 & 0xff, file );fputc( (0x00 >> 8) & 0xff, file );// ---- number channels (stereo)fputc( 0x02, file );fputc( 0x00, file );// ---- sample rate (hz)fputc( samplerate & 0xff, file );fputc( (samplerate >> 8) & 0xff, file );fputc( (samplerate >> 16) & 0xff, file );fputc( (samplerate >> 24) & 0xff, file );// ---- number bytes/secondunsigned int numberbytessecond = samplerate << 2; // multiply 4 because short (2 byte) * 2 channelfputc( numberbytessecond & 0xff, file );fputc( (numberbytessecond >> 8) & 0xff, file );fputc( (numberbytessecond >> 16) & 0xff, file );fputc( (numberbytessecond >> 24) & 0xff, file );// ---- byte cho một khung (nên = số lượng mẫu vật * số lượng kênh)// ---- number bytes for sampleunsigned short bytesoneframe = 4; // short (2 byte) * 2 channelunsigned char bitsonesample = 16; // shortfputc( bytesoneframe & 0xff, file );fputc( (bytesoneframe >> 8) & 0xff, file );. Fputc( bitsonesample, file );fputc( 0x00, file );}. Void savesounddatainteger16bit( file *file, short *sounddata, unsigned int numbersamples ) {fprintf( file, "data" );unsigned int datalength = numbersamples << 1; // each sample 2 bytefputc( datalength & 0xff, file );fputc( (datalength >> 8) & 0xff, file );fputc( (datalength >> 16) & 0xff, file );fputc( (datalength >> 24) & 0xff, file );unsigned int sampleindex = 0;while( sampleindex < numbersamples ) {short shortdata = sounddata[sampleindex];fputc( shortdata & 0xff, file );fputc( (shortdata >> 8) & 0xff, file );sampleindex++;}}.
Author: Sieuamthanh
00:00
00:23
This sound was recorded around the campus upf. It consist on a typical sound in the city, when a bus waits for the traffic lights to turn green. This sound represents the stress of the city and the people which live on it.
Author: Mireia Af
00:00
00:05
This is the sound of some people talking and a microwave in the dinning room of the upf campus poblenou at 14:00. Recorded using zoom h4, normalized and fade-in/fade-out added with audacity.
Author: Dianser
00:00
01:46
These crows were going crazy in my los angeles neighborhood, so i had to record them. Recorded with: sanken cs-1e, sound devices 702t.
Author: Conleec
00:00
00:11
10 seconds of calm traffic at street with cars passing by. Recorded with a zoom h2 in pompeu fabra's university, barcelona.
Author: Xavimuse
00:00
00:04
Sound of some footsteps along some stairs. Taken with a zoom h recorder, near the feet and following them. Taken in the stairs that takes to the -1 floor.
Author: Musicboy
00:00
00:08
Lady walking on wooden stage in theatre i work. Recording made for play. Hardware: behringer b-1, m-audio fasttrack ultra, macbook prosoftware: adobe audition cs 6no post processing.
Author: Harleto
00:00
00:21
Old and sick asthmatic man breathing heavily. Recording made for play. Hardware: behringer b-1, m-audio fasttrack ultra, macbook prosoftware: adobe audition cs 6no post processing.
Author: Harleto
00:00
00:02
It was recorded in tallers building of pompeu fabra with h202 recorder with a high gain. The sound is short and has a high-pitched tone. We can listen the sound of air-conditioning.
Author: Cosp Lcs
00:00
02:33
This is a recording in a run-down old barn during a heavy windstorm. Lots of rattling shingles, doors, etc. Recorded with: sound devices 702t, sanken cs-1e.
Author: Conleec
00:00
02:19
This is a recording in a run-down old barn during a heavy windstorm. Lots of rattling shingles, doors, etc. Recorded with: sound devices 702t, sanken cs-1e.
Author: Conleec
00:00
02:48
This is a recording in a run-down old barn during a heavy windstorm. Lots of rattling shingles, doors, etc. Recorded with: sound devices 702t, sanken cs-1e.
Author: Conleec
00:00
03:15
This recording was made in a small-town bar and grill. Quite active and boisterous. Many people chatting, etc. Recorded with: sound devices 702t, sanken cs-1e.
Author: Conleec
00:00
00:03
This is the sound generated from pressing the lever of the water source of tallers in tanger building. This sound has been recorded using the zoom h2 handy recroder.
Author: Arnydnd
00:00
00:03
Perception of the sound when closing the cover of the bin in tallers' building at poblenou's upf campus. This sound has been recorded using the zoom h2 handy recorded.
Author: Arnydnd
00:00
09:28
My los angeles neighborhood in the early morning, around 6am. Towards the end of the clip, you can hear crows. Recorded with sanken cs-1e, fostex fr2le.
Author: Conleec
00:00
01:35
This is a candid recording in a u. S. Fabric store during the christmas holiday season. Clean, with no music. Primarily women conversing with store clerks. Recorded with: sound devices 702t, sanken cs-1e.
Author: Conleec
00:00
00:05
Sound of some machinery rooms in the upf's laboratories building. Taken with a zoom h recorder, near the doors, because of the restricted area. Taken in the computer rooms building (tallers).
Author: Musicboy
00:00
02:40
Created by divkid for use in the make noise soundhack morphagene. There are dry-only, fx-only, and mix versions of this reel in the pack. See it in action at https://youtu. Be/rk4ufmfcouc. Patch walkthrough. The patch starts with the qu-bit chance providing discrete random values (sample and hold) going into an instruo harmonaig. This takes the stepped random voltages and quantizing them to a given scale. I put in the notes c d eb f g ab bb which is a c natural minor scale, the relative minor of eb major (for anyone that's curious). However like most of my modular work i didn't actually tune the oscillators to anything specific. So treat the scale as a pattern of intervals not a set of specific notes. The quantized notes then form 4 voice chords giving us a root, third, fifth and seventh cv output that will be diatonic following the scale pattern, meaning the third will be major or minor, the seventh major, minor or dominant and the fifth natural or diminshed to suit the scale. With the 4 quantized outputs on the harmonaig these all go into the four oscillators on the synthesis technology e370 quad morphing vco. Each of the e370 oscillators are in the basic morph xy mode using the built in rom b set of wavetables. Wavetables are modulating by various mixes of the befaco rampage, mutable instruments tides, wmd multimode envelopes and music thing modular turing machine. The modulation sources are mixed and split with multiples and mixers. These modulating wavetables then go into a bubblesound vca4p where i'm using 4 mk1 intellijel dixie oscillators all un-synced and free running with sine wave lfos. Each lfo freely fades the voice in and out of the vca4p. As this is unsynced there's no regard to pitch changes linked to changes in amplitude and the swells. I find splitting the gate/rhythm from pitch regarding sequencing to be a freeing and interesting way to work that's not available on traditional instruments. This is just a simple application of that idea with the lfos fading freely unrelated to the other modulation or sequencing of pitch. The sound then goes from the vca4p mix out into a befaco mixer and praxis snake charmer which the output section of the larger case and i'm sending a 'pre' auxiliary out into my fx case. The dry sound first goes into the erica synths fusion delay / flanger vintage ensemble which is giving me short modulated delays giving vibrato like sounds and pushing the input level and overdrive gives us some warmth and grit that thickens up the sound and also fills in the gaps left by the free running lfos pulling quieter sounds and compressing in the on board tube. This then outputs to the feedback 1 bit multitap delay module which has it's delay chip pushed to longer times for some added crackle and noise. I'm using the two delay taps for a shorter and longer delay with little feedback to mix the dry sound for a generally noisier and smeared version of the input. This then goes into the xaoc devices kamieniec with it's on board lfo as slow as possibly for a mildly resonant phase shifting. This goes into mutable instruments clouds set to sew random grains slowly and randomly which are pitch shifted up 2 octaves to fill out some high end flourishes against the closed chord voicings at the core of the patch. Finally this goes into a long lush reverb from the halls of valhalla card in the tiptop audio z-dsp. The stereo fx chain and the mono dry signal are mixed in the befaco hexmix and recorded as a mixed stereo file. I'd consider this to be the main 'reel'. However i split the dry signal and the fx only wet stereo signal and recorded those at the same time so you can choose which reel to use and experiment with dry/wet or blended sounds from this patch.
Author: Makenoisemusic
00:00
00:03
Sound of a locker latch close on. It was recorded using a zoom h2 with medium gain and directionality of 90 degrees, at the wc of the dining room of the poblenou campus of pompeu fabra university.
Author: Estupe
00:00
02:47
This was an active bar in a small town. Poker players and revelers abound. Quite active and boisterous. Recorded with: sound devices 702t, sanken cs-1e.
Author: Conleec
00:00
01:49
Binaural file. Savojarvi lake in kurjenrakha national park, south-western finland in a calm automn day. There is some wind to edit ! recorded by roland r26 and roland cs-10em binaural microphones.
Author: Dansegre
4601 - 4650 of 4,775 Next page
/ 96